Edit Preferences
Helper commands for working with sublime package assets/preferences. ST3 only.
Details
Installs
- Total 4K
- Win 2K
- Mac 1K
- Linux 648
| Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | Oct 5 | Oct 4 | Oct 3 | Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | Sep 19 | Sep 18 | Sep 17 | Sep 16 | Sep 15 | Sep 14 | Sep 13 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 2 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
| Mac | 0 | 0 | 0 | 1 | 2 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 2 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
| Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 |
Readme
- Source
- raw.githubusercontent.com
Description
Some commands for Sublime Text 3 (NOT 2!) to list shortcut keys / preferences
etc in the QuickPanel and navigate to edit location on selection.
2000 Words
How to insert a binding repr in the Quick Panel
Copy from the Default.sublime-keymap.template the last line that contains a
multitude of bindings with `insert_binding_repr` and place it in your User
keymap.
So how would you insert alt+q? You can think of it like this:
- PRESS `alt` and hold it down
- PRESS `=` while thinking PLUS then lift all fingers
- PRESS `q`
Note that on a standard US keyboard `=` is on the same key as `+` (plus) You
can't bind to just a modifier like alt, so plus seems a resaonable key/mnemonic.
In sublime `{"keys": [...]}` terms previous exmaple would be:
- PRESS `["alt+="]`
- PRESS `["q"]`
The following bindings show how it works.
Note the `expecting_binding_repr_mode` key.
{"args": {"val": "alt"},
"command": "insert_binding_repr",
"context": [{"key": "overlay_visible", "operand": true, "operator": "equal"},
{"key": "setting.expecting_binding_repr_mode",
"operand": false,
"operator": "equal"}],
"keys": ["alt+="]}
{"args": {"val": "q"},
"command": "insert_binding_repr",
"context": [{"key": "overlay_visible", "operand": true, "operator": "equal"},
{"key": "setting.expecting_binding_repr_mode",
"operand": true,
"operator": "equal"}],
"keys": ["q"]}
So how would you insert ctrl+alt+q? (In sublime terms)
- PRESS `ctrl+alt+=`
- PRESS `q`
Help? You can't insert_binding_repr for down|enter|up ?
Unfortunately, some bindings don't work as the second key due to the quickpanel
swallowing them:
- <enter>
- <up>
- <down>
- and others ...
The workaround is to type the first letter of the key you desire, eg:
- type `e` for <enter> to insert `alt+e` then type `nter`
- type `u` for <up> to insert `alt+u` then type `p`
- type `d` for <down> to insert `alt+d` then type `own`
Command Palette
[
{ "caption": "Edit Preference: List Settings", "command": "list_settings"},
{ "caption": "Edit Preference: List Plugins Commands", "command": "list_commands" },
{ "caption": "Edit Preference: List Shortcut Keys", "command": "list_shortcut_keys"},
{ "caption": "Edit Preference: List Menu Bindings", "command": "list_menu_bindings"},
{ "caption": "Edit Preference: Theme",
"command": "edit_package_files",
"args": {"pref_type": "sublime-theme"}},
{ "caption": "Edit Preference: sublime-completions",
"command": "edit_package_files",
"args": {"pref_type": "sublime-completions"}},
{ "caption": "Edit Preference: sublime-build",
"command": "edit_package_files",
"args": {"pref_type": "sublime-build"}},
{ "caption": "Edit Preference: sublime-mousemap",
"command": "edit_package_files",
"args": {"pref_type": "sublime-mousemap"}},
{ "caption": "Edit Preference: sublime-menu",
"command": "edit_package_files",
"args": {"pref_type": "sublime-menu"}},
{ "caption": "Edit Preference: tmTheme|colorscheme",
"command": "edit_package_files",
"args": {"pref_type": ".*\\.(tmTheme|stTheme)$"}},
{ "caption": "Edit Preference: tmLanguage|syntax|grammar",
"command": "edit_package_files",
"args": {"pref_type": ".*\\.((tm|st)Language)$"}},
{ "caption": "Edit Preference: sublime-commands",
"command": "edit_package_files",
"args": {"pref_type": "sublime-commands"}}
]
TODO
Set cyclic tab key for auto complete